﻿/* Main Wrapper - Centers the gallery */
.sg-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    font-family: sans-serif;
    box-sizing: border-box;
    display: flex;
    gap: 30px;
    padding: 20px;
}

    /* Ensure images don't overflow */
    .sg-container * {
        box-sizing: border-box;
    }

/* --- LEFT SIDE: Sidebar --- */
.sg-left {
    width: 250px;
    flex-shrink: 0;
    background: #f4f4f4; /* Light grey background */
    padding: 20px;
    border-radius: 8px;
    height: fit-content;
}

    .sg-left h3 {
        margin-bottom: 15px;
        font-size: 1.2rem;
        border-bottom: 2px solid #ddd;
        padding-bottom: 10px;
    }

/* Filter Buttons */
.sg-filter-btn {
    display: block;
    width: 100%;
    text-align: left;
    padding: 20px 15px;
    margin-bottom: 5px;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #333;
    transition: background 0.2s;
}

    .sg-filter-btn:hover {
        background: #e0e0e0;
    }

    .sg-filter-btn.active {
        background: #333;
        color: white;
    }

/* --- RIGHT SIDE: Grid --- */
.sg-right {
    flex-grow: 1;
}

.sg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

/* Gallery Item Card */
.sg-item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    background: #eee;
    aspect-ratio: 4/4; /* Ensures uniform shape */
    transition: transform 0.2s, opacity 0.3s;
    border: 2px solid;
}

    .sg-item img {
        width: 100%;
        height: 100%;
        object-fit: cover; 
        display: block;
    }

    /* Hover Effect */
    .sg-item:hover {
        transform: scale(1.02);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* Hide class for filtering */
    .sg-item.hidden {
        display: none;
    }

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .sg-container {
        flex-direction: column;
    }

    .sg-left {
        width: 100%;
    }
}/* Ensure fonts are loaded (Optional: remove if you use your own) */
.milestone-wrapper {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--m-dark);
    color: var(--m-text-light);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
    /* Add a subtle gradient background */
    background: linear-gradient(180deg, #111 0%, #1a1a1a 100%);
}

/* --- Header & Badges --- */
.m-header {
    text-align: center;
    margin-bottom: 50px;
}

.m-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--m-gold);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.m-subtitle {
    color: var(--m-text-grey);
    max-width: 600px;
    margin: 0 auto 30px;
}

.m-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.m-badge {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--m-gold-dim);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--m-gold);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .m-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        background: rgba(212, 175, 55, 0.2);
    }

/* --- Timeline Container --- */
.m-timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

    /* The Central Line */
    .m-timeline-container::after {
        content: '';
        position: absolute;
        width: 4px;
        background: linear-gradient(to bottom, var(--m-gold), var(--m-red), var(--m-gold));
        top: 0;
        bottom: 0;
        left: 50%;
        margin-left: -2px;
        border-radius: 2px;
        box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    }

/* --- Timeline Items --- */
.m-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
    /* Initial state for animation */
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out;
}

    /* Alternating sides */
    .m-item:nth-child(odd) {
        left: 0;
        text-align: right;
    }

    .m-item:nth-child(even) {
        left: 50%;
        text-align: left;
    }

    /* The Circle Node */
    .m-item::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        background: var(--m-dark);
        border: 4px solid var(--m-red);
        top: 20px;
        border-radius: 50%;
        z-index: 2;
        transition: all 0.4s ease;
    }

    .m-item:nth-child(odd)::after {
        right: -10px;
    }

    .m-item:nth-child(even)::after {
        left: -10px;
    }

    /* Hover Transformations */
    .m-item:hover::after {
        background: var(--m-gold);
        border-color: var(--m-gold);
        transform: scale(1.4);
        box-shadow: 0 0 15px var(--m-gold);
    }

/* --- Content Card --- */
.m-content {
    background: var(--m-card-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .m-content:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        border-color: var(--m-gold-dim);
    }

.m-year {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--m-gold);
    margin-bottom: 5px;
}

.m-event-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.m-desc {
    font-size: 0.9rem;
    color: var(--m-text-grey);
    line-height: 1.5;
}

/* Arrows */
.m-item:nth-child(odd) .m-content::after {
    content: " ";
    position: absolute;
    top: 28px;
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-style: solid;
    border-color: transparent transparent transparent var(--m-card-bg);
}

.m-item:nth-child(even) .m-content::after {
    content: " ";
    position: absolute;
    top: 28px;
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-style: solid;
    border-color: transparent var(--m-card-bg) transparent transparent;
}

/* More to come */
.m-more {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed #333;
    color: var(--m-text-grey);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* --- Animation Class --- */
.m-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .m-timeline-container::after {
        left: 31px;
    }

    .m-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
        text-align: left !important;
    }

        .m-item:nth-child(odd), .m-item:nth-child(even) {
            left: 0;
        }

            .m-item:nth-child(odd)::after, .m-item:nth-child(even)::after {
                left: 21px;
            }

            .m-item:nth-child(odd) .m-content::after {
                left: -10px;
                border-width: 10px 10px 10px 0;
                border-color: transparent var(--m-card-bg) transparent transparent;
            }

    .m-title {
        font-size: 1.8rem;
    }
}/* 1. Main Navbar Container */
#navbar {
    position: sticky; /* Makes it stick to the top */
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white); /* White background */
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 5%; /* Padding */
    box-shadow: 0 2px 10px rgba(0,0,0,0.1); /* Subtle shadow */
    z-index: 1000;
    height: 100px; /* Fixed height for consistency */
    box-sizing: border-box;
    border-bottom: 10px solid #5B1A16;
}

/* Logo */
.logo img {
    height: 90px; /* Adjust logo height */
    width: auto;
    display: block;
}

/* Navigation Links List */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px; /* Space between items */
    align-items: center;
    margin: 0;
    padding: 0;
}

    /* Standard Links & Buttons */
    .nav-links a {
        text-decoration: none;
        color: var(--text-dark);
        font-weight: 600;
        font-size: 0.95rem;
        text-transform: uppercase;
        transition: color 0.3s ease;
        position: relative;
    }

        .nav-links a:hover {
            color: var(--primary-color);
        }

/* Button Style */
.btn-nav {
    background-color: var(--primary-color);
    color: var(--white) !important;
    padding: 10px 25px;
    border-radius: 4px;
}

    .btn-nav:hover {
        background-color: var(--primary-dark);
    }

/* 2. DROPDOWN MENU STYLES */

/* The Dropdown Container */
.dropdown {
    position: relative; /* Necessary for positioning the dropdown content */
    cursor: pointer;
}

/* Dropdown Arrow Icon (optional) */
.dropbtn i {
    font-size: 0.8em;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

/* The Dropdown Content Box */
.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Positions it right below the link */
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-top: 3px solid var(--primary-color);
    z-index: 1;
    border-radius: 0 0 4px 4px;
    overflow: hidden;
    animation: fadeIn 0.3s ease;
}

/* Show dropdown on hover over the parent list item */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: var(--text-dark);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    text-transform: none; /* Keep sentence case for sub-items */
    font-size: 0.9rem;
    border-bottom: 1px solid #f0f0f0;
    
}

    .dropdown-content a:last-child {
        border-bottom: none;
    }

    .dropdown-content a:hover {
        background-color: #f9f9f9;
        color: var(--primary-color);
        padding-left: 25px; /* Slide effect */
    }

/* 3. MOBILE RESPONSIVENESS (Hamburger) */

.hamburger {
    display: none; /* Hidden on desktop */
    cursor: pointer;
}

/* Mobile View Styles */
@media (max-width: 768px) {
    .hamburger {
        display: block; /* Show burger on mobile */
        font-size: 1.5rem;
        color: var(--text-dark);
    }

    .nav-links {
        position: absolute;
        right: 0;
        top: 70px; /* Below the header height */
        background-color: var(--white);
        flex-direction: column;
        width: 100%; /* Full width dropdown */
        text-align: center;
        padding: 20px 0;
        gap: 0;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
        max-height: 0; /* Hidden */
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }

        .nav-links.active {
            max-height: 500px; /* Open height */
            border-bottom: 3px solid var(--primary-color);
        }

        .nav-links li {
            width: 100%;
        }

        .nav-links a {
            display: block;
            padding: 15px 0;
            border-bottom: 1px solid #eee;
        }

    .btn-nav {
        display: inline-block;
        margin: 15px 0;
    }

    /* Mobile Dropdown Styles */
    .dropdown-content {
        position: static; /* Stack below link in mobile */
        display: none; /* Still hidden initially */
        background-color: #f9f9f9;
        box-shadow: none;
        border: none;
        width: 100%;
        border-radius: 0;
    }

    /* Always show dropdown inside active mobile menu if clicked, 
       or handle with CSS hover for simplicity */
    .dropdown:hover .dropdown-content {
        display: block;
        box-shadow: none;
    }
}

/* Simple Fade Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.infrastructure-section {
    font-family: 'Open Sans', sans-serif;
    padding: 80px 20px;
    background-color: #ffffff; /* Clean white background for the whole section */
    color: var(--infra-text-dark);
    box-sizing: border-box;
}

.infra-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Split 50/50 */
    gap: 40px;
    align-items: center;
}

/* --- Left Column: Visuals --- */
.infra-visuals {
    position: relative;
}

.infra-main-image-wrapper {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    margin-bottom: 20px;
    position: relative;
}

.infra-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Zoom effect on hover */
.infra-main-image-wrapper:hover .infra-main-image {
    transform: scale(1.05);
}

/* Thumbnail Grid */
.infra-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.infra-thumb {
    aspect-ratio: 16/9;
    background-color: #ddd;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

    .infra-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .infra-thumb:hover {
        border-color: var(--infra-accent);
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .infra-thumb.active {
        border-color: var(--infra-accent);
        opacity: 0.8;
    }

/* --- Right Column: Gray Box Info --- */
.infra-info-box {
    background-color: var(--infra-gray-box); /* The requested Gray Box */
    padding: 40px;
    border-radius: 8px;
    border-left: 5px solid var(--infra-accent); /* Accent strip */
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

    .infra-info-box:hover {
        transform: translateX(10px);
    }

.infra-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 30px;
    color: var(--infra-primary);
    position: relative;
}

    .infra-title::after {
        content: '';
        display: block;
        width: 60px;
        height: 3px;
        background: var(--infra-accent);
        margin-top: 10px;
    }

.infra-plant-block {
    margin-bottom: 30px;
}

.infra-plant-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--infra-accent);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .infra-plant-name i {
        color: var(--infra-primary);
    }

.infra-capabilities {
    list-style: none;
    padding: 0;
}

    .infra-capabilities li {
        margin-bottom: 12px;
        padding-left: 20px;
        position: relative;
        color: var(--infra-text-light);
        transition: color 0.3s ease;
    }

        .infra-capabilities li::before {
            content: '•';
            color: var(--infra-primary);
            position: absolute;
            left: 0;
            font-weight: bold;
        }

        .infra-capabilities li:hover {
            color: var(--infra-primary);
            transform: translateX(5px);
        }

.infra-highlight {
    font-weight: 700;
    color: var(--infra-text-dark);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .infra-container {
        grid-template-columns: 1fr; /* Stack on mobile */
    }

    .infra-main-image-wrapper {
        height: 250px;
    }

    .infra-info-box {
        padding: 25px;
    }

    .infra-title {
        font-size: 1.8rem;
    }
}
.cp-section {
    font-family: 'Segoe UI', sans-serif;
    background-color: var(--cp-bg);
    color: var(--cp-text);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

/* Background decoration */
.cp-bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(41, 121, 255, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cp-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: center;
    z-index: 2;
}

/* --- LEFT: The Orbital Circle --- */
.cp-orbit-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1; /* Perfect Square */
    max-width: 600px;
    margin: 0 auto;
}

/* The Spinning Gradient Ring */
.cp-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /* Gradient matching the stages: Green (Start) -> Blue (Process) -> Yellow (End) */
    background: conic-gradient( from 180deg, var(--cp-green) 0deg, var(--cp-green) 60deg, var(--cp-blue) 60deg, var(--cp-blue) 180deg, var(--cp-yellow) 180deg, var(--cp-yellow) 300deg, transparent 300deg );
    /* Create the hollow circle effect using mask or border logic. 
       Here, using a pseudo-element to mask the center. */
    mask: radial-gradient(transparent 65%, black 66%);
    -webkit-mask: radial-gradient(transparent 65%, black 66%);
    opacity: 0.8;
    filter: blur(8px);
    animation: spinRing 20s linear infinite;
}

/* Secondary thin ring for detail */
.cp-ring-thin {
    position: absolute;
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    border: 1px dashed var(--cp-border);
    animation: spinRing 40s linear infinite reverse;
    pointer-events: none;
}

/* Center Logo */
.cp-center-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: rgba(0,0,0,0.8);
    border: 2px solid var(--cp-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    z-index: 10;
}

    .cp-center-hub img {
        width: 80%;
        height: auto;
        filter: drop-shadow(0 0 10px rgba(255,255,255,0.3));
    }

/* Process Nodes */
.cp-node {
    position: absolute;
    width: 120px;
    padding: 10px;
    background: var(--cp-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--cp-border);
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    animation: floatNode 4s ease-in-out infinite;
}

    .cp-node i {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }

    .cp-node span {
        font-size: 0.8rem;
        font-weight: 600;
        line-height: 1.1;
        text-transform: uppercase;
    }

/* Node Positioning (Matches the screenshot: Top -> Clockwise) */

/* 1. Top: Raw Materials (Green) */
.node-1 {
    top: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-color: var(--cp-green);
    color: var(--cp-green);
    animation-delay: 0s;
}

    .node-1:hover {
        background: rgba(0, 230, 118, 0.2);
        box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
    }

/* 2. Top Right: Buyer's Warehouse (Green) */
.node-2 {
    top: 15%;
    right: 5%;
    transform: translate(50%, -50%);
    border-color: var(--cp-green);
    color: var(--cp-green);
    animation-delay: 0.5s;
}

    .node-2:hover {
        background: rgba(0, 230, 118, 0.2);
        box-shadow: 0 0 20px rgba(0, 230, 118, 0.4);
    }

/* 3. Bottom Right: Chilli Feeder (Blue) */
.node-3 {
    bottom: 15%;
    right: 5%;
    transform: translate(50%, 50%);
    border-color: var(--cp-blue);
    color: var(--cp-blue);
    animation-delay: 1s;
}

    .node-3:hover {
        background: rgba(41, 121, 255, 0.2);
        box-shadow: 0 0 20px rgba(41, 121, 255, 0.4);
    }

/* 4. Bottom: Chilli Cleaning (Blue) */
.node-4 {
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, 50%);
    border-color: var(--cp-blue);
    color: var(--cp-blue);
    animation-delay: 1.5s;
}

    .node-4:hover {
        background: rgba(41, 121, 255, 0.2);
        box-shadow: 0 0 20px rgba(41, 121, 255, 0.4);
    }

/* 5. Bottom Left: Storage (Yellow) */
.node-5 {
    bottom: 15%;
    left: 5%;
    transform: translate(-50%, 50%);
    border-color: var(--cp-yellow);
    color: var(--cp-yellow);
    animation-delay: 2s;
}

    .node-5:hover {
        background: rgba(255, 234, 0, 0.2);
        box-shadow: 0 0 20px rgba(255, 234, 0, 0.4);
    }

/* 6. Top Left: Packing (Yellow) */
.node-6 {
    top: 15%;
    left: 5%;
    transform: translate(-50%, -50%);
    border-color: var(--cp-yellow);
    color: var(--cp-yellow);
    animation-delay: 2.5s;
}

    .node-6:hover {
        background: rgba(255, 234, 0, 0.2);
        box-shadow: 0 0 20px rgba(255, 234, 0, 0.4);
    }


/* --- RIGHT: The Equipment List --- */
.cp-equip-panel {
    background: linear-gradient(135deg, #151b25 0%, #0b0e14 100%);
    border: 1px solid var(--cp-border);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.cp-panel-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--cp-border);
    color: #fff;
}

    .cp-panel-title span {
        color: var(--cp-blue);
    }

.cp-equip-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cp-equip-item {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.03);
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

    .cp-equip-item:hover {
        background: rgba(255,255,255,0.08);
        border-left-color: var(--cp-blue);
        transform: translateX(10px);
    }

.cp-icon-circle {
    width: 45px;
    height: 45px;
    background: #1e2532;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    color: var(--cp-blue);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cp-item-text h4 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
}

.cp-item-text p {
    margin: 3px 0 0;
    font-size: 0.8rem;
    color: #888;
    font-family: monospace;
}

/* Connector Line Visual */
.connector-line {
    position: absolute;
    left: -20px;
    top: 50%;
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--cp-blue), transparent);
}

/* Animations */
@keyframes spinRing {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes floatNode {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    /* Base position + offset */
    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
    /* Move up */
}

/* Correct float animation for nodes not at top/left 50% */
/* (Simplified: using a generic hover lift for stability, 
     but strictly defined transforms in class styles are needed for exact positioning) */

/* --- Responsive --- */
@media (max-width: 992px) {
    .cp-section {
        padding: 50px 10px;
    }

    .cp-container {
        grid-template-columns: 1fr;
    }

    /* On mobile, we stack the circle into a vertical timeline-like list 
       OR we just shrink the circle. Let's shrink the circle. */
    .cp-orbit-wrapper {
        max-width: 400px;
    }

    .cp-node {
        width: 90px;
        padding: 5px;
        font-size: 0.7rem;
    }

        .cp-node i {
            font-size: 1rem;
        }

    .connector-line {
        display: none;
    }
}/* --- OTHER PRODUCTS GALLERY GRID STYLES --- */

:root {
    --primary-color: #5A1915;
    --primary-dark: #12612B;
    --text-dark: #0E672F;
    --text-light: #555;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --m-gold: #D4AF37;
    --m-gold-dim: #AA8C2C;
    --m-red: #C0392B;
    --m-dark: #111111;
    --m-card-bg: rgba(30, 30, 30, 0.85);
    --m-text-light: #f5f5f5;
    --m-text-grey: #aaaaaa;
    --infra-primary: #2C3E50; /* Dark Blue-Grey */
    --infra-accent: #27ae60; /* Green matching the gate description */
    --infra-gray-box: #F4F6F7; /* Light Gray for the info box */
    --infra-text-dark: #333333;
    --infra-text-light: #666666;
    --infra-border: #e0e0e0;
    --cp-bg: #0b0e14;
    --cp-text: #ffffff;
    --cp-green: #00e676; /* Vibrant Green */
    --cp-blue: #2979ff; /* Vibrant Blue */
    --cp-yellow: #ffea00; /* Vibrant Yellow */
    --cp-glass: rgba(255, 255, 255, 0.05);
    --cp-border: rgba(255, 255, 255, 0.1);
}

/* 1. Hero Section */
.prod-hero {
    position: relative;
    height: 40vh; /* Slightly smaller hero for catalog pages */
    min-height: 300px;
    background-image: url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

    .prod-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
    }

.prod-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.prod-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.prod-hero .quote {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    display: inline-block;
    margin-top: 20px;
}

/* 2. Grid Container */
.other-products-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.other-grid {
    display: grid;
    /* Responsive Grid: Adapts columns automatically */
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

/* 3. Product Card */
.other-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
}

    .other-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(139, 175, 41, 0.15); /* Green tint on hover */
        border-color: var(--primary-color);
    }

.card-img-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #f4f4f4;
}

    .card-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

.other-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}

.card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .card-body h3 {
        font-family: var(--font-heading);
        font-size: 1.5rem;
        color: var(--text-dark);
        margin-bottom: 15px;
        border-bottom: 2px solid var(--primary-color);
        padding-bottom: 10px;
        display: inline-block;
    }

/* Botanical Info Styling */
.botanical-info {
    margin-top: auto; /* Pushes info to bottom if needed, or just flows */
    font-size: 0.9rem;
    color: var(--text-light);
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed #eee;
}

    .info-row:last-child {
        border-bottom: none;
    }

.info-label {
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.info-value {
    text-align: right;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .prod-hero h1 {
        font-size: 2.2rem;
    }

    .other-grid {
        grid-template-columns: 1fr;
    }
    /* Single column on mobile */
}

/* --- CORIANDER PRODUCT PAGE STYLES --- */

:root {
    --primary-color: #5A1915;
    --primary-dark: #12612B;
    --text-dark: #0E672F;
    --text-light: #555;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* 1. Product Hero */
.prod-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    /* Replace with a Coriander field image */
    background-image: url('https://images.unsplash.com/photo-1599909533681-74084efc65f4?q=80&w=1600');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

    .prod-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6);
    }

.prod-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.prod-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.prod-hero .quote {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    display: inline-block;
    margin-top: 20px;
}

/* 2. Sticky Sub-Navigation */
.prod-sub-nav {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.prod-nav-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
}

    .prod-nav-list a {
        text-decoration: none;
        color: var(--text-dark);
        font-family: var(--font-body);
        font-weight: 600;
        padding: 8px 20px;
        border-radius: 20px;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .prod-nav-list a:hover, .prod-nav-list a.active {
            background-color: var(--primary-color);
            color: var(--white);
        }

/* 3. Product Zig-Zag Layout */
.prod-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.prod-container {
    max-width: 1200px;
    margin: 0 auto;
}

.prod-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

    /* Alternating Layout */
    .prod-row.reverse {
        flex-direction: row-reverse;
    }

.prod-img-box {
    flex: 1;
    position: relative;
}

    .prod-img-box img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        object-fit: cover;
        aspect-ratio: 4/3;
    }

.prod-text-box {
    flex: 1;
}

    .prod-text-box h2 {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .prod-text-box p {
        font-size: 1.05rem;
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 15px;
    }

/* 4. Attributes List (Custom Checkmark) */
.prod-attributes {
    margin-top: 20px;
    padding: 25px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

    .prod-attributes h4 {
        font-family: var(--font-body);
        font-size: 1.1rem;
        margin-bottom: 15px;
        color: var(--text-dark);
    }

.check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .check-list li {
        margin-bottom: 12px;
        padding-left: 30px;
        position: relative;
        color: var(--text-light);
        font-size: 1rem;
    }

        /* Custom Checkmark Icon using CSS */
        .check-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            width: 8px;
            height: 14px;
            border: solid var(--primary-color);
            border-width: 0 2px 2px 0;
            transform: rotate(45deg);
        }

/* 5. Back to Products Link */
.prod-back-link {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-light);
    border-top: 1px solid #eee;
}

    .prod-back-link a {
        color: var(--primary-dark);
        text-decoration: none;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.9rem;
    }

/* Responsive */
@media (max-width: 768px) {
    .prod-hero h1 {
        font-size: 2.2rem;
    }

    .prod-row, .prod-row.reverse {
        flex-direction: column;
    }

    .prod-nav-list {
        gap: 10px;
    }

        .prod-nav-list a {
            font-size: 0.8rem;
            padding: 6px 12px;
        }
}

/* --- RED CHILLI PRODUCT PAGE STYLES --- */

:root {
    --primary-color: #5A1915; /* Brand Green */
    --primary-dark: #12612B;
    --text-dark: #0E672F;
    --text-light: #555;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* 1. Product Hero */
.prod-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-image: url('https://images.unsplash.com/photo-1599909533681-74084efc65f4?q=80&w=1600'); /* Replace with red chilli banner image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

    .prod-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.6); /* Dark overlay */
    }

.prod-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.prod-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.prod-hero .quote {
    font-size: 1.4rem;
    font-style: italic;
    font-weight: 300;
    border-left: 3px solid var(--primary-color);
    padding-left: 20px;
    display: inline-block;
    margin-top: 20px;
}

/* 2. Sticky Sub-Navigation */
.prod-sub-nav {
    background: var(--white);
    position: sticky;
    top: 0; /* Sticks to top of viewport (adjust if you have a fixed header) */
    z-index: 100;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.prod-nav-list {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    flex-wrap: wrap;
}

    .prod-nav-list a {
        text-decoration: none;
        color: var(--text-dark);
        font-family: var(--font-body);
        font-weight: 600;
        padding: 8px 20px;
        border-radius: 20px;
        transition: all 0.3s ease;
        font-size: 0.9rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

        .prod-nav-list a:hover, .prod-nav-list a.active {
            background-color: var(--primary-color);
            color: var(--white);
        }

/* 3. Product Zig-Zag Layout */
.prod-section {
    padding: 80px 20px;
    background-color: var(--white);
}

.prod-container {
    max-width: 1200px;
    margin: 0 auto;
}

.prod-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px; /* Space between products */
}

    /* Alternating Layout */
    .prod-row.reverse {
        flex-direction: row-reverse;
    }

.prod-img-box {
    flex: 1;
    position: relative;
}

    .prod-img-box img {
        width: 100%;
        height: auto;
        border-radius: 12px;
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
        /* Ensure images look uniform */
        object-fit: cover;
        aspect-ratio: 4/3;
    }

.prod-text-box {
    flex: 1;
}

    .prod-text-box h2 {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        color: var(--primary-color);
        margin-bottom: 20px;
    }

    .prod-text-box p {
        font-size: 1.05rem;
        color: var(--text-light);
        line-height: 1.8;
        margin-bottom: 15px;
    }

    /* Highlighting the scientific names */
    .prod-text-box strong {
        color: var(--text-dark);
        font-weight: 700;
    }

/* 4. Back to Products Link */
.prod-back-link {
    text-align: center;
    padding: 40px 20px;
    background-color: var(--bg-light);
    border-top: 1px solid #eee;
}

    .prod-back-link a {
        color: var(--primary-dark);
        text-decoration: none;
        font-weight: 600;
        text-transform: uppercase;
        font-size: 0.9rem;
    }

/* Responsive */
@media (max-width: 768px) {
    .prod-hero h1 {
        font-size: 2.2rem;
    }

    .prod-row, .prod-row.reverse {
        flex-direction: column;
    }

    .prod-nav-list {
        gap: 10px;
    }

        .prod-nav-list a {
            font-size: 0.8rem;
            padding: 6px 12px;
        }
}


/* --- CERTIFICATES PAGE LAYOUT STYLES --- */

:root {
    --primary-color: #5A1915;
    --primary-dark: #12612B;
    --text-dark: #0E672F;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* Certificate Section */
.cert-showcase-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.cert-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

    .cert-header h2 {
        font-family: var(--font-heading);
        font-size: 2.8rem;
        color: var(--text-dark);
        margin-bottom: 15px;
    }

    .cert-header p {
        font-size: 1.1rem;
        color: var(--text-light);
    }

/* Certificate Grid */
.cert-grid {
    display: grid;
    /* Creates a responsive grid: 1 column mobile, 2 columns tablet/desktop */
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Certificate Card */
.cert-card {
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(0,0,0,0.05);
}

    .cert-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(139, 175, 41, 0.15); /* Green tint shadow */
        border-color: var(--primary-color);
    }

/* Image Container */
.cert-img-wrapper {
    width: 100%;
    /* Light gray background to show transparency if images are PNGs */
    background-color: #fcfcfc;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #eee;
    /* Flex center to ensure image sits nicely */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

    .cert-img-wrapper img {
        width: 100%;
        height: auto;
        max-height: 600px;
        /* 'contain' ensures the WHOLE certificate is visible without cropping text */
        object-fit: contain;
        display: block;
        transition: transform 0.5s ease;
    }

.cert-card:hover .cert-img-wrapper img {
    transform: scale(1.03);
}

/* Certificate Title */
.cert-info {
    margin-top: 20px;
    text-align: center;
}

    .cert-info h3 {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        color: var(--text-dark);
        margin-bottom: 5px;
    }

    .cert-info span {
        display: inline-block;
        padding: 4px 12px;
        background-color: rgba(139, 175, 41, 0.1);
        color: var(--primary-dark);
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

/* Responsive adjustments */
@media (max-width: 600px) {
    .cert-grid {
        grid-template-columns: 1fr; /* Single column on very small screens */
    }

    .cert-header h2 {
        font-size: 2.2rem;
    }
}


/* --- VALUES PAGE LAYOUT STYLES --- */

:root {
    --primary-color: #5A1915;
    --primary-dark: #12612B;
    --text-dark: #0E672F;
    --text-light: #666;
    --bg-light: #fdfdfd;
    --white: #ffffff;
    --accent-bg: #f4f7f6;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

/* 1. Philosophy Hero */
.val-hero {
    position: relative;
    padding: 120px 20px;
    background-image: url('https://images.unsplash.com/photo-1532336414038-cf19250c5757?q=80&w=1600'); /* Hands holding soil/spices */
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--white);
}

.val-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.val-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

.val-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: 1px; color:#fff;
}

.val-hero p {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.6;
    color: #fff;
}

/* 2. The 5 Pillars Grid */
.val-pillars-section {
    padding: 100px 20px;
    background-color: var(--white);
}

.val-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.val-pillar-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.val-pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-bottom: 4px solid var(--primary-color);
}

.val-icon-box {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.val-pillar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

/* 3. Philosophy / Freshness Split */
.val-philosophy-section {
    padding: 100px 20px;
    background-color: var(--accent-bg);
}

.val-split-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.val-phil-img {
    flex: 1;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.val-phil-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.val-phil-text {
    flex: 1;
}

.val-phil-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.val-phil-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.val-highlight-box {
    background: var(--white);
    padding: 25px;
    border-left: 5px solid var(--primary-color);
    font-style: italic;
    color: var(--text-dark);
    margin: 30px 0;
}

/* 4. Trust & Future Section */
.val-trust-section {
    padding: 100px 20px;
    background-color: var(--text-dark); /* Dark background for contrast */
    color: var(--white);
    text-align: center;
}

.val-trust-container {
    max-width: 900px;
    margin: 0 auto;
}

.val-trust-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--white);
}

.val-trust-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 40px;
}

.val-cta-btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: background 0.3s;
}

.val-cta-btn:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Responsive */
@media (max-width: 768px) {
    .val-hero h1 { font-size: 2.2rem; }
    .val-split-container { flex-direction: column; }
    .val-phil-img { width: 100%; height: 300px; }
    .val-phil-text h2 { font-size: 2rem; }
}
/* --- STRENGTH PAGE LAYOUT STYLES --- */

:root {
    --primary-color: #5A1915;
    --primary-dark: #12612B;
    --text-dark: #0E672F;
    --text-light: #666;
    --bg-light: #f4f7f6;
    --white: #ffffff;
    --dark-bg: #1a1a1a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}
/* 1. Dark Strength Hero */
.str-hero-section {
    position: relative;
    padding: 100px 20px;
    background-image: url('https://images.unsplash.com/photo-1595855709915-6b9f0198695a?q=80&w=1600'); /* Warehouse/Shipping image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

    .str-hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 1;
    }

.str-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

    .str-hero-content h1 {
        font-family: var(--font-heading);
        font-size: 3.5rem;
        margin-bottom: 20px;
        color: var(--white);
    }

    .str-hero-content p {
        font-size: 1.2rem;
        color: #ddd;
    }

/* 2. Intro / Exports Section (Split) */
.str-intro-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.str-split-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
}

    /* For alternating layout */
    .str-split-row.reverse {
        flex-direction: row-reverse;
    }

.str-text-col {
    flex: 1;
}

.str-image-col {
    flex: 1;
    height: 400px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

    .str-image-col img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .str-image-col:hover img {
        transform: scale(1.05);
    }

.str-text-col h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.str-text-col p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* 3. Packaging Grid (Dark Theme) */
.str-packaging-section {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 100px 20px;
}

.str-pack-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

    .str-pack-header h2 {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        color: var(--primary-color);
    }

.str-pack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.str-pack-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

    .str-pack-card:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-5px);
        border-color: var(--primary-color);
    }

    .str-pack-card h3 {
        font-family: var(--font-heading);
        font-size: 1.4rem;
        margin-bottom: 15px;
        color: var(--white);
    }

    .str-pack-card p {
        font-size: 0.95rem;
        color: #ccc;
        line-height: 1.6;
    }

/* 4. Benefits (3-Column Grid) */
.str-benefits-section {
    padding: 100px 20px;
    background-color: var(--bg-light);
}

.str-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.str-benefit-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

    .str-benefit-item::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--primary-color);
    }

.str-benefit-icon {
    width: 70px;
    height: 70px;
    background: rgba(139, 175, 41, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.str-benefit-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .str-hero-content h1 {
        font-size: 2.2rem;
    }

    .str-split-row, .str-split-row.reverse {
        flex-direction: column;
    }

    .str-image-col {
        width: 100%;
        height: 250px;
    }

    .str-text-col h2 {
        font-size: 2rem;
    }
}

/* 1. Cinematic Hero Section */
.alt-hero {
    position: relative;
    height: 60vh; /* Taller than standard, but not full screen */
    min-height: 400px;
    background-image: url('https://images.unsplash.com/photo-1596040033229-a9821ebd058d?q=80&w=1600');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax effect */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

    .alt-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    }

.alt-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.alt-hero-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
    border-radius: 2px;
}

.alt-hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin: 0;
    line-height: 1.1;
}

/* 2. History Split Section */
.alt-history-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.alt-split-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.alt-history-text {
    flex: 2;
    min-width: 300px;
}

.alt-history-sidebar {
    flex: 1;
    min-width: 280px;
    background: var(--bg-light);
    padding: 30px;
    border-left: 4px solid var(--primary-color);
}

.alt-history-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.alt-history-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.sidebar-item {
    margin-bottom: 25px;
}

    .sidebar-item h4 {
        font-family: var(--font-heading);
        font-size: 1.2rem;
        margin-bottom: 5px;
        color: var(--text-dark);
    }

    .sidebar-item span {
        font-size: 0.9rem;
        color: var(--text-light);
        display: block;
    }

/* 3. Why Us Grid (Different from previous list) */
.alt-why-section {
    background-color: var(--white);
    padding: 80px 20px;
}

.alt-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

    .alt-section-header h2 {
        font-family: var(--font-heading);
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

.alt-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.alt-feature-card {
    background: var(--white);
    padding: 30px;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .alt-feature-card:hover {
        border-color: var(--primary-color);
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }

    .alt-feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 4px;
        height: 0;
        background: var(--primary-color);
        transition: height 0.3s ease;
    }

    .alt-feature-card:hover::before {
        height: 100%;
    }

    .alt-feature-card h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: var(--text-dark);
    }

/* 4. Mission & Vision Split Panels */
.alt-mv-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 400px;
}

.alt-mv-mission {
    flex: 1;
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
}

.alt-mv-vision {
    flex: 1;
    background: #0E672F;
    color: var(--white);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
}

.alt-mv-label {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 15px;
    font-weight: 600;
}

.alt-mv-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1.4;
}

/* Responsive */
@media (max-width: 768px) {
    .alt-hero h1 {
        font-size: 2.2rem;
    }

    .alt-history-sidebar {
        width: 100%;
        border-left: none;
        border-top: 4px solid var(--primary-color);
    }

    .alt-mv-text {
        font-size: 1.5rem;
    }
}/* --- VARIABLES & RESET --- */
:root {
    --primary-red: #8a1c1c;
    --primary-gold: #d4af37;
    --dark-charcoal: #121212;
    --off-white: #f4f1ea;
    --white: #ffffff;
    --text-grey: #4a4a4a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-charcoal);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-red);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* --- SCROLL PROGRESS --- */
.progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    z-index: 2000;
}

.progress-bar {
    height: 4px;
    background: var(--primary-gold);
    width: 0%;
}

 

/* --- HERO SLIDER --- */
.hero-slider-container {
    height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .slide.active {
        opacity: 1;
    }

    .slide::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.5); /* Dark overlay */
    }

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 900px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--primary-gold);
    font-weight: 600;
}

.hero-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 18px 45px;
    background: var(--primary-red);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(138, 28, 28, 0.3);
    transition: transform 0.3s;
}

    .hero-btn:hover {
        transform: translateY(-5px);
        background: var(--white);
        color: var(--primary-red);
    }

.slider-controls {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.control-btn {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
}

    .control-btn:hover {
        background: var(--primary-gold);
        border-color: var(--primary-gold);
        color: var(--dark-charcoal);
    }

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
    color: var(--white);
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* --- INTRO SPLIT --- */
.intro-split {
    display: flex;
    min-height: 80vh;
    width: 100%;
}

.split-image {
    flex: 1;
     position: relative; 
}

    .split-image::after {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.3);
    }

.split-text {
    flex: 1;
    background: var(--off-white);
    padding: 40px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.large-number {
    position: absolute;
    top:  0px;
    right: 40px;
    font-size: 10rem;
    font-family: 'Playfair Display', serif;
    color: rgba(212, 175, 55, 0.1);
    font-weight: 700;
    line-height: 1;
}

.split-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.split-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-grey);
    max-width: 500px;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-item span {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-red);
}

/* --- CERTIFICATIONS --- */
.cert-section {
    padding: 80px 5%;
    background: var(--white);
    text-align: center;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cert-card {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: 0.3s;
}

    .cert-card:hover {
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-color: var(--primary-gold);
    }

    .cert-card i {
        font-size: 2.5rem;
        color: var(--primary-gold);
        margin-bottom: 20px;
    }

/* --- PROCESS --- */
.process-section {
    padding: 100px 5%;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

    .section-header h2 {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .section-header p {
        color: var(--text-grey);
        max-width: 600px;
        margin: 0 auto;
    }

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.process-card {
    background: var(--off-white);
    padding: 60px 30px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: 0.4s;
}

    .process-card:hover {
        transform: translateY(-10px);
        border-bottom-color: var(--primary-gold);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.process-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 25px;
}

/* --- MILESTONES --- */
.milestones-parallax {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('https://images.unsplash.com/photo-1506929562872-bb421503ef21?q=80&w=2068');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: var(--white);
    padding: 120px 5%;
}

.milestones-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.milestone-item {
    display: flex;
    align-items: center;
    gap: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 40px;
}

    .milestone-item:last-child {
        border-bottom: none;
    }

.milestone-year {
    font-size: 4rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-gold);
    min-width: 150px;
    text-align: center;
    line-height: 1;
}

.milestone-content h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 10px;
}

.milestone-content p {
    color: rgba(255,255,255,0.8);
}

/* --- TESTIMONIALS --- */
.testimonials {
    padding: 100px 5%;
    background: #f9f9f9;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    position: relative;
}

.quote-icon {
    color: var(--primary-gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    margin-top: 20px;
    color: var(--primary-red);
    font-weight: 700;
}

/* --- PRODUCTS --- */
.products-section {
    padding: 100px 0;
    background: var(--dark-charcoal);
    color: var(--white);
}

    .products-section h2 {
        color: var(--white);
        text-align: center;
        margin-bottom: 60px;
        font-size: 3rem;
    }

.product-showcase {
    display: flex;
    flex-wrap: wrap;
}

.product-item {
    flex: 1;
    min-width: 300px;
    height: 400px;
    position: relative;
    overflow: hidden;
}

    .product-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.product-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(20px);
    opacity: 0.8;
    transition: 0.4s;
}

.product-item:hover img {
    transform: scale(1.1);
}

.product-item:hover .product-overlay {
    transform: translateY(0);
    opacity: 1;
}

.product-overlay h3 {
    color: var(--primary-gold);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

/* --- CONTACT FORM --- */
.contact-form-section {
    padding: 100px 5%;
    background: var(--white);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

    .contact-info h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

.info-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

    .info-row i {
        color: var(--primary-gold);
        font-size: 1.5rem;
    }

.form-box {
    flex: 1;
    min-width: 300px;
    background: var(--off-white);
    padding: 40px;
    border-radius: 10px;
}

    .form-box input, .form-box textarea {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-family: inherit;
    }

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary-red);
    color: var(--white);
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

    .submit-btn:hover {
        background: var(--dark-charcoal);
    }

/* --- FOOTER --- */
footer {
    background: var(--off-white);
    padding: 80px 5% 30px 5%;
    color: var(--text-grey);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--primary-red);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-col p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.footer-col i {
    color: var(--primary-gold);
    margin-right: 10px;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--primary-red);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 30px;
    font-size: 0.8rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 968px) {
    .intro-split {
        flex-direction: column;
    }

    .split-text {
        padding: 60px 30px;
    }

    .nav-links {
        display: none;
    }

    .milestone-item {
        flex-direction: column;
        text-align: center;
    }

    .large-number {
        font-size: 5rem;
        top: 10px;
        right: 10px;
    }
}
/* --- Right Column: Query Form --- */
.contact-form h2 {
    margin-bottom: 20px;
    color: #333;
    font-size: 28px;
    border-bottom: 2px solid #0056b3;
    display: inline-block;
    padding-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        transition: border-color 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            border-color: #0056b3;
            outline: none;
        }

    .form-group textarea {
        height: 150px;
        resize: vertical;
    }

.submit-btn {
    background-color: #0056b3;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

    .submit-btn:hover {
        background-color: #004494;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr; /* Stack columns on mobile */
        padding: 20px;
    }
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

    .form-header h2 {
        color: #333;
        font-weight: 700;
    }

.form-group {
    margin-bottom: 20px;
}

.control-label {
    font-weight: 600;
    color: #555;
}

.form-control {
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
    transition: border-color 0.3s;
}

    .form-control:focus {
        border-color: #4e73df;
        box-shadow: 0 0 0 0.2rem rgba(78, 115, 223, 0.25);
    }

.btn-primary {
    background-color: #4e73df;
    border-color: #4e73df;
    font-weight: 600;
    padding: 12px 20px;
    transition: all 0.3s;
}

    .btn-primary:hover {
        background-color: #2e59d9;
        border-color: #2653d4;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

/* Notification Popup Styles */
.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .notification-overlay.show {
        opacity: 1;
        visibility: visible;
    }

.notification-popup {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transform: scale(0.7);
    transition: transform 0.3s;
}

.notification-overlay.show .notification-popup {
    transform: scale(1);
}

.notification-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.notification-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.notification-message {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.close-notification {
    background-color: #4e73df;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

    .close-notification:hover {
        background-color: #2e59d9;
    }

.loading-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 10px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.required-field {
    color: #e74a3b;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 12px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
    font-weight: bold;
}

.additional-info {
    margin-top: 30px;
}

.info-item {
    margin-bottom: 10px;
